.media-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 20px;
}

.media-button {
    /* display: inline-block; */
    height: 60px;
    width: 60px;
    text-decoration: none;
    margin: 5px 15px;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
}

.media-button:hover {
    width: 200px;
}

.media-button .media-icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    color: #000;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-out;
}

.media-button:nth-child(1):hover .media-icon {
    background: #4267B2;
}

.media-button:nth-child(2):hover .media-icon {
    background: #5dbd5d;
}

.media-button:nth-child(3):hover .media-icon {
    background: #505050;
}

.media-button .media-icon i {
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-out;
}

.media-button:hover .media-icon i {
    color: #fff;
}

.media-button .media-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    margin-left: 25px;
    transition: all 0.3s ease-out;
}

.media-button:nth-child(1) .media-text {
    color: #4267B2;
}

.media-button:nth-child(2) .media-text {
    color: #5dbd5d;
}

.media-button:nth-child(3) .media-text {
    color: #505050;
}